home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / FPSE_src / system / generic / rs232.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-01  |  456 b   |  25 lines

  1. /*
  2.     RS232 - Map the serial port of the PSX to a PC COMx
  3.   ================================================================
  4.   This code is done for making an easy conversion to plugin format
  5.   ================================================================
  6. */
  7. #include "fpse.h"
  8.  
  9. int RS232_Init(SIO_Type *sio)
  10. {
  11.  return FPSE_OK;
  12. }
  13.  
  14. void RS232_Close(SIO_Type *sio)
  15. {
  16. }
  17.  
  18. void RS232_WriteData(SIO_Type *sio)
  19. {
  20. }
  21.  
  22. void RS232_UpdateStatus(SIO_Type *sio)
  23. {
  24. }
  25.